8dea842830a106fb676796217a3097882e8bb17f,spring-statemachine-core/src/main/java/org/springframework/statemachine/state/ObjectState.java,ObjectState,entry,#StateContext#,158
Before Change
@Override
public void entry(StateContext<S, E> context) {
super.entry(context);
Collection<? extends Action<S, E>> actions = getEntryActions();
if (actions != null) {
for (Action<S, E> action : actions) {
try {
executeAction(action, context);
After Change
@Override
public void entry(StateContext<S, E> context) {
super.entry(context);
for (Action<S, E> action : getEntryActions()) {
try {
executeAction(action, context);
} catch (Exception e) {